home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / CSCdy38035.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  88 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Script License for details
  5. #
  6. # Thanks to Nicolas FISCHBACH (nico@securite.org) for his help
  7. #
  8. # Ref:  http://www.cisco.com/warp/public/707/vpn3k-multiple-vuln-pub.shtml
  9.  
  10.  
  11. if(description)
  12. {
  13.  script_id(11297);
  14.  script_version("$Revision: 1.3 $");
  15.  script_cve_id("CAN-2002-1103");
  16.  
  17.  
  18.  name["english"] = "CSCdy38035";
  19.  
  20.  script_name(english:name["english"]);
  21.  
  22.  desc["english"] = "
  23. The remote VPN concentrator is subject to an ISAKMP
  24. package processing vulnerability. Malformed or a
  25. very large number of ISAKMP packets might cause a reload
  26. of the concentrator. The vulnerability is aggravated if debug
  27. is turned on.
  28.  
  29. This vulnerability is documented as Cisco bug ID CSCdy38035
  30.  
  31. Solution : 
  32. http://www.cisco.com/warp/public/707/vpn3k-multiple-vuln-pub.shtml
  33. Risk factor : High
  34.  
  35. *** As Nessus solely relied on the banner of the remote host
  36. *** this might be a false positive
  37. ";
  38.  script_description(english:desc["english"]);
  39.  
  40.  summary["english"] = "Uses SNMP to determine if a flaw is present";
  41.  script_summary(english:summary["english"]);
  42.  
  43.  script_category(ACT_GATHER_INFO);
  44.  
  45.  script_copyright(english:"This script is (C) 2003 Renaud Deraison");
  46.  
  47.  script_family(english:"CISCO");
  48.  
  49.  script_dependencie("snmp_sysDesc.nasl");
  50.  script_require_keys("SNMP/community",
  51.               "SNMP/sysDesc",
  52.               "CISCO/model");
  53.  
  54.  exit(0);
  55. }
  56.  
  57.  
  58.  
  59. # The code starts here
  60. ok=0;
  61.  
  62. os = get_kb_item("SNMP/sysDesc"); if(!os)exit(0);
  63.  
  64.  
  65.  
  66.  
  67. # Is this a VPN3k concentrator ?
  68. if(!egrep(pattern:".*VPN 3000 Concentrator.*", string:os))exit(0);
  69.  
  70. # 3.6(Rel)
  71. if(egrep(pattern:".*Version 3\.6\.Rel.*", string:os))ok = 1;
  72.  
  73. # < 3.5.5
  74. if(egrep(pattern:".*Version 3\.5\.Rel.*", string:os))ok = 1;
  75. if(egrep(pattern:".*Version 3\.5\.[0-4][^0-9].*", string:os))ok = 1;
  76.  
  77. # 3.1.x
  78. if(egrep(pattern:".*Version 3\.1\.*", string:os))ok = 1;
  79.  
  80. # 3.0.x
  81. if(egrep(pattern:".*Version 3\.0\..*", string:os))ok = 1;
  82.  
  83. # 2.x.x
  84. if(egrep(pattern:".*Version 2\..*", string:os))ok = 1;
  85.  
  86.  
  87. if(ok)security_warning(port:161, proto:"udp");
  88.